Links.php
<?php
//@TODO make the links view... not horrible
$urls = [];
foreach ($links as $name=>$link){
if (is_numeric($name))$name=$link;
$url = $package->url('').str_replace('.','-',$link).'/';
$url = str_replace(['///','//'],'/',$url);
$urls[$name] = $url;
}
foreach ($urls as $name=>$url){
echo '<a href="'.$url.'">'.$name.'</a><br>'."\n";
}